home *** CD-ROM | disk | FTP | other *** search
/ Clickx 75 / Clickx 75.iso / software / expressionweb / expressionwebv3 / ExpressionWeb_en.exe / Setup / WeConen.cab / xweb.ACTIONS.GOTOURL.HTM.en < prev    next >
Encoding:
Text File  |  2009-06-09  |  2.2 KB  |  90 lines

  1. 
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5.         
  6.         <title>Go To URL</title>
  7.         <meta name="DHTMLScriptName" content="Go To &URL">
  8.         
  9.         <meta name="DialogResizable" content="true">
  10.         <meta name="DialogSize" content="475,100">
  11.         
  12.         <style>
  13.         button    { width: 8em;  }                
  14.         table    { border: none; border-collapse: collapse }
  15.         </style>
  16.         <script type="text/JavaScript">
  17.         var L_NOURL_ErrorMessage    =  "Please enter a URL";
  18.         </script>
  19.         <script type="text/JavaScript" src="FPLib.js"></script>
  20.         <script type="text/JavaScript" src="Strings.js"></script>
  21.         <script type="text/JavaScript" src="GoToURL.js"></script>
  22.     </head>
  23.     <body onload="safeFocus(theForm.URL1)">
  24.         <form id="theForm" name="theForm" onsubmit="Validate(); return false;">
  25.             <table border="0" cellpadding="0" cellspacing="0" id="AutoNumber1" width="100%" height="100%">
  26.                 <tr>
  27.                     <td nowrap>
  28.                         <label for="URL1">
  29.                         
  30.                             <u>G</u>o to URL: 
  31.                         </label>
  32.                     </td>
  33.                     <td width="100%" dir="ltr">
  34.                         <input type="text" name="URL1" accesskey="g" id="URL1" style="width: 100%"> 
  35.                         
  36.                     </td>
  37.                     <td>
  38.                          
  39.                     </td>
  40.                     <td>
  41.                          
  42.                         <button name="BrowseURL1" value="Browse..." accesskey="b" onclick="PickURL(URL1);">
  43.                         
  44.                           
  45.                             <u>B</u>rowse...
  46.                           </button>
  47.                     </td>
  48.                 </tr>
  49.                 <tr>
  50.                     <td height="100%">
  51.                          
  52.                     </td>
  53.                 </tr>
  54.                 <tr>
  55.                     <td colspan="4">
  56.                         <hr>
  57.                         <table bordercolor="#111111" width="100%">
  58.                             <tr>
  59.                                 <td width="100%"></td>
  60.                                 <td>
  61.                                     <button name="OK" value="OK" type="submit">
  62.                                         
  63.                                         OK
  64.                                     </button>
  65.                                 </td>
  66.                                 <td> </td>
  67.                                 <td>
  68.                                     <button name="Cancel" value="Cancel" onclick="CancelAction();">
  69.                                       
  70.                                         Cancel
  71.                                       </button>
  72.                                 </td>
  73.                             </tr>
  74.                         </table>
  75.                     </td>
  76.                 </tr>
  77.             </table>
  78.         </form>
  79.     </body>
  80.     <script language="javascript" id="EventHandler">
  81. function PickURL(eURL)
  82. {
  83.     var url = FrontPage.ShowPickURLDialog(FrontPage.ActiveDocument.url, eURL.value);
  84.     if (url != '') 
  85.         eURL.value = url;
  86.     eURL.focus();
  87. }
  88.     </script>
  89. </html>
  90.